home *** CD-ROM | disk | FTP | other *** search
- #ifndef LIBRARIES_MIAMI_H
- #define LIBRARIES_MIAMI_H
-
- /*
- ** $VER: libraries/miami.h 2.0 (10.07.97)
- **
- ** C prototypes. For use with 32 bit integers only.
- **
- ** (C) Copyright 1997 Nordic Global Inc.
- ** All Rights Reserved
- */
-
- struct MiamiPFBuffer {
- unsigned long flags; /* currently unused */
- unsigned char *data;
- unsigned long length;
- unsigned char *name;
- unsigned char itype; /* interface type MIAMIPFBIT_... */
- unsigned char ptype; /* packet type MIAMIPFBPT_... */
- };
-
- #define MIAMIPFBIT_LOOP 0
- #define MIAMIPFBIT_BUILTIN 1
-
- #define MIAMIPFBPT_IP 0
- #define MIAMIPFBPT_ARP 1
-
- #endif
-